* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-section {
    width: 100%;
}

/* .logo h2 {
    color: white;
    font-size: 24px;
    margin-top: 10px; */
/* } */

/* .subtitle {
    color: white;
    font-size: 16px;
    margin-top: 5px;
} */

.form-container {
    width: 100%;
    max-width: 380px;
    margin-top: 40px;
}

.title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 45px;
    font-weight: bold;
}

.title span {
    position: relative;
    color: #000;
}

.title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 6px;
    background: #5EDC1F;
    z-index: -1;
}

label {
    font-size: 14px;
    color: #555;
}

.input-box {
    margin: 8px 0 18px;
    background: #f3f3f3;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

.input-box input {
    flex: 1;
    border: none;
    background: none;
    font-size: 15px;
    outline: none;
}

.country {
    margin-right: 10px;
    color: #555;
}

.eye {
    font-size: 18px;
    opacity: .6;
}

/* .signin-btn {
    width: 100%;
    padding: 15px;
    background: #bdbdbd;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    margin-top: 10px;
} */
.signin-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.policy {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

.policy a {
    color: #55c840;
    font-weight: bold;
}

.create-account,
.privacy {
    text-align: center;
    margin-top: 18px;
    color: #55c840;
    font-size: 15px;
}
/* 🟢 WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.whatsapp-float {
    background-color: #0088cc 
   }
