* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 450px;
    height: 100vh;
    position: relative;
}

.top-banner {
    height: 120px;
    background: linear-gradient(to right, #2196F3, #9C27B0);
}

.content {
    padding: 0 30px;
    margin-top: -30px;
}

.logo {
    width: 90px;
    background: white;
    padding: 2px;
    border-radius: 2px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}

h2 {
    margin: 30px 0;
    color: #555;
    font-weight: 400;
}

/* Phone Input Styling */
.input-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    margin-bottom: 40px;
}

.country-code {
    font-size: 16px;
    color: #333;
    padding-right: 15px;
    border-right: 1px solid #eee;
    margin-right: 15px;
}

.phone-input {
    border: none;
    outline: none;
    font-size: 16px;
    flex: 1;
}

.help-icon {
    color: #ccc;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

/* PIN Boxes */
.pin-section label {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.pin-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.pin-inputs input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: none;
    border-bottom: 2px solid #eee;
    outline: none;
    background: #f9f9f9;
    border-radius: 4px;
}

.pin-inputs input:focus {
    border-bottom: 2px solid #2196F3;
}

/* Button */
.login-btn {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    background-color: #f0f0f0;
    color: #aaa;
    font-size: 16px;
    font-weight: bold;
    cursor: not-allowed;
}

.login-btn.active {
    background-color: #005dbb;
    color: white;
    cursor: pointer;
}
