/* Register Page Styles */

.register-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ECF4FF 0%, #ffffff 100%);
    padding: 60px 0;
}

.register-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(241, 77, 93, 0.1);
    transition: transform 0.3s ease;
}

.register-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(241, 77, 93, 0.15);
}

.register-icon {
    font-size: 4rem;
    color: #F14D5D;
}

.register-card h2 {
    color: #120F2D;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #ECF4FF;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #F14D5D;
    box-shadow: 0 0 0 0.2rem rgba(241, 77, 93, 0.15);
}

.input-group-text {
    background-color: #ECF4FF;
    border: 2px solid #ECF4FF;
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: #F14D5D;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.btn-block {
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(241, 77, 93, 0.3);
}

.divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ECF4FF;
}

.divider span {
    position: relative;
    background: white;
    padding: 0 15px;
    color: #6B6A75;
    font-size: 0.9rem;
}

/* Google Sign-Up Button Styling */
/* White button style with border */
.btn-google-official {
    width: 100%;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    border-radius: 0.5rem;
    border: 1px solid #bebebe;
    gap: 10px;
    color: #414141;
    background: #fff;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-google-official svg {
    height: 24px;
    width: auto;
}

.btn-google-official:hover {
    border: solid 1px #464545;
}

.btn-google-official:active {
    margin-top: 1px;
}

.btn-google-official:focus {
    outline: none;
}

.btn-google-official:disabled {
    pointer-events: none;
    opacity: 0.65;
    color: #7e7e7e;
    background: #dcdcdc;
    box-shadow: none;
    text-shadow: none;
    cursor: not-allowed;
}

.btn-google-official .btn-text {
    font-size: 16px;
    font-weight: 600;
    color: #414141;
}

/* Loading state for Google button */
.btn-google-official.loading {
    opacity: 0.65;
    pointer-events: none;
}

.btn-google-official.loading .btn-text {
    opacity: 0.7;
}

.form-check-label {
    color: #6B6A75;
    cursor: pointer;
    font-size: 0.9rem;
}

label {
    color: #120F2D;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.benefits-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(40, 120, 235, 0.08);
}

.benefits-section h5 {
    color: #120F2D;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.benefits-section i {
    display: block;
}

.benefits-section strong {
    color: #120F2D;
    font-family: 'Jost', sans-serif;
}

.benefits-section small {
    color: #6B6A75;
}

/* Password strength indicator (can be added later) */
.password-strength {
    height: 5px;
    border-radius: 3px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.password-strength.weak {
    width: 33%;
    background-color: #F14D5D;
}

.password-strength.medium {
    width: 66%;
    background-color: #FFA500;
}

.password-strength.strong {
    width: 100%;
    background-color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
    .register-card {
        padding: 30px 20px;
    }

    .register-icon {
        font-size: 3rem;
    }

    .benefits-section {
        padding: 20px;
    }
}