securecall-main {
    --component-form-button-width: 50%;
}

/* Body Styling */
body {
    font-family: 'Trebuchet MS', sans-serif;
    color: lightgray;
    margin: 0;
    background-image: url('../wrapper-assets/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 10%;
    min-height: 100vh;
}

/* Main Content Container */
.main-content-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
    /* 10% spacing on either side */
    width: 80%;
    border: none;
}

/* Header Container */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between; 
}

/* Logout Section */
.logout-section {
    display: inline-flex; /* Use inline-flex to prevent wrapping */
    align-items: flex-start; /* Align children to the top of the container */
    margin-left: auto; /* Push the logout section to the right */
    padding: 10px 20px;
}


.default-logo {
    width: 100%;
    /* Adjust the width to fit the container */
    max-width: 400px;
    height: auto;
    margin-right: auto; /* Push the logo to the left */
}

.webex-logo {
    display: block;
    margin: 0 auto;
    max-width: 100px;
    height: auto;
    /* Maintains the aspect ratio */
}

.login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.web-component-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.error-message-section {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100%;
    color: red;
}

.persistent-message-section {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100%;
    color: red;
}

/* Login Container */
.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Horizontally center content within the container */
    padding: 20px;
    border-radius: 10px;
    /* Add rounded corners */
    border: 1px dotted #ccc;
    /* Optional: Add a border for styling */
    border-color: #049cc4;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    /* Add a transition for smooth color change */
    color: white;
    width: 80%;
}

/* Hover effect */
.auth-container:hover {
    background-color: rgba(0, 0, 0, 0.7);
    /* Adjust the background color on hover */
}

.login-form {
    width: 100%;
    max-width: 500px;
}

.login-form input {
    width: 80%;
}

.login-form button {
    width: 85%;
}

/* Title Container */
.title {
    margin-top: 1vh;
    /* % of the viewport height for large margin-top */
    margin-bottom: 1vh;
    /* % of the viewport height for large margin-top */
    text-align: center;
    /* Horizontally center content within the container */
    width: 100%;
}

h3 {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 24px;
    color: #049cc4;
    /* Set the text color to teal */
    font-weight: 100;
    /* Set the font weight to 100 for a very light weight */
}

h4 {
    font-family: 'Trebuchet MS', sans-serif;
    font-variant: small-caps;
    font-size: 12px;
    color: white;
    /* Set the text color to teal */
    font-weight: 100;
    /* Set the font weight to 100 for a very light weight */
}

/* Custom Input Container Styles */
.input-container {
    position: relative;
    display: flex;
    /* Use flexbox for centering */
    flex-direction: column;
    /* Vertically stack content */
    align-items: center;
    /* Center horizontally */
    margin: 30px 0 20px;
}


/* Custom Input Styles */
.custom-input {
    width: 100%;
    padding: 10px;
    color: white;
    font-size: 15px;
    font-weight: 100;
    border-radius: 5px;
    /* Add rounded corners */
    background-color: transparent;
    /* Background color for filled appearance */
    border: 1px solid #ccc;
    /* Bottom border for the outline */
    transition: border-color 0.3s ease;
}

/* Custom Label Styles */
.custom-label {
    position: absolute;
    top: 10px;
    left: 50px;
    font-size: 15px;
    font-weight: 100;
    pointer-events: none;
    /* Allow clicking through the label */
    transition: top 0.3s, left 0.3s, font-size 0.3s;
}

/* Input Focus Styles */
.custom-input:focus {
    border-color: #007bff;
}

.custom-input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

/* Input Focus with Content */
.custom-input:not(:placeholder-shown)+.custom-label,
.custom-input:focus+.custom-label,
.custom-input:focus+.custom-label {
    top: -20px;
    /* Move label up when input has content or is focused */
    left: 36px;
    /* Move label slightly left when input has content or is focused */
    font-size: 12px;
    /* Adjust label font size when it's floating */
}

/* Custom Button Styles */
.login-button {
    width: 100%;
    /* Set button width to 100% */
    padding: 10px 20px;
    /* Adjust padding as needed */
    font-size: 16px;
    color: white;
    background-color: rgba(4, 156, 196, 0.5);
    border: 1px solid #ccc;
    /* Border similar to input border */
    border-radius: 5px;
    /* Add rounded corners like inputs */
    transition: background-color 0.3s ease, border-color 0.3s ease;
    /* Add smooth transitions */
    cursor: pointer;
    /* Add a pointer cursor on hover */
}

.login-button:hover {
    background-color: #049cc4;
    /* Change background color to #049cc4 on hover */
    border-color: #049cc4;
    /* Change border color to #049cc4 on hover */
}

.login-button:disabled {
    background-color: rgba(4, 156, 196, 0.3);
    border-color: rgba(4, 156, 196, 0.3);
    color: #049cc4;
    cursor: not-allowed;
    pointer-events: none;
}

.logout-button {
    width: 100%;
    padding: 5px 10px;
    color: white;
    background-color: rgba(4, 156, 196, 0.5);
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.logout-button:hover {
    background-color: #049cc4;
    border-color: #049cc4;
}

.button-link {
    background: none;
    border: none;
    padding: 0;
}

.custom-link {
    font-size: 12px;
    color: gray;
    text-decoration: none;
}

.custom-link:hover {
    color: lightgray;
    text-decoration: underline;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-variant: small-caps;
    color: lightgrey;
    text-align: center;
    /* Center-align the text */
    padding: 10px 0;
    /* Add some padding for spacing */
}