* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f5f7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrapper {
    width: 100%;
    max-width: 420px;
    padding: 10px;
}

.back-link {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.login-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.08);
}

.logo-area {
    text-align: center;
    margin-bottom: 25px;
}

.logo-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eaeaea;
    margin-bottom: 10px;
}

.logo-area h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a3dff;
}

label {
    font-size: 14px;
    margin-top: 15px;
    display: block;
    color: #555;
}

.input-box {
    position: relative;
    margin-top: 5px;
}

.input-box .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #8a8a8a;
}

.input-box input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: 0.2s;
}

.input-box input:focus {
    border-color: #1a3dff;
    outline: none;
}

.btn-login {
    width: 100%;
    background: #1a3dff;
    color: #fff;
    padding: 12px;
    border: none;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
}

.btn-login:hover {
    background: #0029e6;
}

.footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #444;
}

.footer-text a {
    color: #1a3dff;
    text-decoration: none;
    font-weight: 600;
}
.toggle-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    color: #777;
}