/* Common styles for authentication components */

/* Card styles */
.auth-card, .login-card {
    width: 450px;
    max-width: 100%;
    padding: 2rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
}

/* Container for the signup process */
.auth-container, .login-container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 150px);
}

/* Provider button styles */
.provider-button {
    width: 100%;
    border-radius: 25px !important;
    background-color: white !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

/* Add subtle shadow effect on hover */
.provider-button:hover {
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: box-shadow 0.2s ease !important;
}

/* Specific alignment for company selection buttons */
.company-selection .provider-button .rz-button-text {
    justify-content: flex-start;
}


::deep .provider-button .rz-button-text {
    width: 100%;
    justify-content: center;
}

/* Link styles */
.auth-link {
    color: #0d6efd;
    text-decoration: none;
}

/* Company selection styles */
.company-list-container {
    max-height: 300px;
    overflow-y: auto;
}

.search-box {
    width: 100%;
    border-radius: 25px !important;
}

/* Subdomain input style */

.subdomain-input {
    flex: 1;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.subdomain-suffix {
    padding: 0 12px;
    color: #616161;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Responsive styles */
@media (max-width: 767px) {
    .auth-card {
        background-color: transparent !important;
        box-shadow: none !important;
    }
}
