﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.top-bar {
    position: fixed;
    top: 0;
    width: 380px;
    z-index: 1000;
}

.search-bar {
    position: fixed;
    top: 50px;
    width: 380px;
    z-index: 999;
}



.phone {
    padding-top: 50px;
}
.phone {
    width: 380px;
    min-height: 100vh;
    background: rgb(236 239 241);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
}


.login-container {
    padding: 20px;
}

.logo {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

    .logo img {
        width: 200px;
    }

.signin-text {
    margin-bottom: 30px;
    font-weight: 500;
    color: #333;
}

.input-box {
    display: flex;
    align-items: center;
    border: 2px solid #7b3fe4;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 20px;
    background: transparent;
}

.icon {
    margin-right: 10px;
    font-size: 18px;
    color: #7b3fe4;
}

.input-field {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    background: transparent;
}
.forgot-container .input-field {
    padding: 12px;
    border: 2px solid #6a1bb1;
}

.login-btn {
    width: 100%;
    background: #6a1bb1;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
}

.skip {
    text-align: center;
    margin-top: 20px;
    color: #777;
    font-size: 18px;
}

.bottom-links {
    position: absolute;
    bottom: 20px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    padding-bottom: 55px;
}

.eye {
    cursor: pointer;
    font-size: 18px;
    color: #7b3fe4;
}



.register-container {
    padding: 20px;
}

.register-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .register-header a {
        color: #7b3fe4;
        text-decoration: none;
        border-bottom: 2px solid #7b3fe4;
    }

.section {
    margin-bottom: 15px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.section-title {
    color: #7b3fe4;
    margin: 15px 0 10px;
}

.row {
    display: flex;
    gap: 10px;
}

.line-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #999;
    padding: 10px 5px;
    margin-bottom: 15px;
    background: transparent;
    outline: none;
}

.full {
    width: 100%;
}

.register-btn {
    width: 100%;
    background: #6a1bb1;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 30px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}

/*
forget password start here*/
.forgot-container {
    padding: 20px;
    text-align: center;
}

.logo {
    margin-top: 40px;
    margin-bottom: 40px;
}

    .logo img {
        width: 220px;
    }

.forgot-title {
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.forgot-sub {
    color: #777;
    margin-bottom: 40px;
    font-size: 16px;
}

/* underline style input */
.line-style {
    border: none;
    border-bottom: 2px solid #aaa;
    border-radius: 0;
    margin-bottom: 40px;
}

/* button */
.submit-btn {
    width: 100%;
    background: #6a1bb1;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


.bottom-links a {
    text-decoration: none;
    color: #323232;
}

.skip a {
    text-decoration: none;
    color: #777;
}



/*registaration page desing start here*/
/* ===== REGISTRATION PAGE STYLING ===== */

.register-container {
    padding: 20px;
}

/* Header */
.register-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .register-header h2 {
        font-size: 20px;
        font-weight: 500;
        color: #333;
    }

    .register-header a {
        color: #7b3fe4;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 2px solid #7b3fe4;
    }

/* Section title */
h3 {
    font-size: 18px;
    color: #444;
}

/* Form group */
.form-group {
    margin-bottom: 15px;
}

    /* Labels */
    .form-group label {
        font-size: 14px;
        color: #555;
        display: inline-block;
        margin-bottom: 12px;
    }

/* Input fields */
.form-control {
    width: 100%;
    padding: 12px;
    border:2px solid #6a1bb1;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    background: #fff;
    transition: 0.3s;
}

    /* Focus effect */
    .form-control:focus {
        border-color: #7b3fe4;
    }

    /* Disabled field (Referral name) */
    .form-control:disabled {
        background: #f5f5f5;
        color: #777;
    }

/* Row layout */
.row {
    display: flex;
    gap: 10px;
}

/* Column adjustments */
.col-md-5,
.col-md-7,
.col-xs-8,
.col-xs-4,
.col-12 {
    width: 100%;
}

/* Mobile split */
@media (min-width: 480px) {
    .col-md-5 {
        width: 40%;
    }

    .col-md-7 {
        width: 60%;
    }
}

/* Radio buttons */
input[type="radio"] {
    margin-right: 5px;
}

/* Checkbox */
input[type="checkbox"] {
    margin-right: 5px;
}

/* Terms text */
.row a {
    color: #7b3fe4;
    text-decoration: none;
}

/* Register button */
.register-btn {
    width: 100%;
    background: #6a1bb1;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .register-btn:hover {
        background: #57149a;
    }

/* Bottom link */
.text-center {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #555;
    text-decoration: none;
}

/* Error / success messages */
.control-group.error input {
    border-color: red;
}

.control-group.success input {
    border-color: green;
}

/* Small spacing fix */
hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}