* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #333;
}

.container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: transparent;
    color: #333;
    outline: none;
    font-size: 15px;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 14px;
    color: #888;
    background: transparent;
    transition: 0.2s;
    pointer-events: none;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: -8px;
    left: 10px;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 14px;
    background: #0072ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #005cd6;
}

.icon-container {
    text-align: center;
    margin-bottom: 20px;
}

.icon-container svg {
    width: 80px;
    height: 80px;
    fill: #0072ff;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #007bff;
}