﻿body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F58E4E, #ffcc80);
}

/* Glass Effect for Card */
.card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Input Fields */
.form-control {
    height: 48px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #cecece; /* Increase opacity */
    background: rgba(255, 255, 255, 0.5); /* Slightly less transparent */
    text-align: center;   
}

    .form-control::placeholder {
        color: black; /* Higher opacity for visibility */
        opacity: 1; /* Ensures the placeholder is visible */
    }


/* Buttons */
.btn {
    width: 100%;
    font-size: 16px;
    padding: 12px;
    font-weight: bold;
    border-radius: 8px;
    background: #ff9800;
    color: white;
    border: none;
    transition: 0.3s;
}

    .btn:hover {
        background: #e68900;
    }

/* OTP Input */
.otp-container {
    display: flex;
    justify-content: center;
    gap: 12px;
}

    .otp-container input {
        width: 52px;
        height: 52px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        border: 2px solid #cecece;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.25);
        color: #000000;
    }

/* Messages */
.message {
    text-align: center;
    margin-top: 12px;
    font-weight: bold;
    font-size: 14px;
    color: #ffeb3b;
}

/* Sections Initially Hidden */
#otpSection, #passwordSection {
    display: none;
}

/* Resend OTP Button */
.resend-btn {
    background: none;
    border: none;   
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

    .resend-btn:disabled {
        color: gray;
        cursor: not-allowed;
    }

/* Back to Login */
#backToLogin {
    display: block;
    margin-top: 15px;    
    text-decoration: none;
    font-size: 14px;
}

    #backToLogin:hover {
        text-decoration: underline;
    }

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    width: 100%;
    padding: 20px;
    background: rgb(255 220 185 / 95%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-section {
    flex: 1;
    padding: 20px;
    text-align: left;
}

    .info-section h2 {
        color: #F58E4E;
        font-size: 26px;
        font-weight: bold;
        font-family: auto;
    }

    .info-section p {
        font-size: 16px;
        margin-bottom: 10px;
        color: #444;
        font-family: serif;
    }

.playstore-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #F58E4E;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
    font-family: auto;
}

    .playstore-link img {
        width: 30px;
        height: 30px;
    }

    .playstore-link:hover {
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    body {
        background: #F58E4E;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: none;
        background: none;
    }

    .info-section {
        display: none;
    }

    
}