body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #e0e5ec;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 380px;
    padding: 30px;
    border-radius: 25px;
    background: #e0e5ec;
    box-shadow: 9px 9px 16px #babec5,
        -9px -9px 16px #ffffff;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}
b {
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: #ff0505;
}
.input-field {
    margin-bottom: 18px;
}

.input-field input {
    width: 90%;
    padding: 15px;
    border-radius: 15px;
    border: none;
    outline: none;
    font-size: 15px;
    background: #e0e5ec;
    box-shadow: inset 4px 4px 8px #babec5,
        inset -4px -4px 8px #ffffff;
}

.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: #e0e5ec;
    box-shadow: 6px 6px 12px #babec5,
        -6px -6px 12px #ffffff;
    transition: 0.2s ease-in-out;
}

.btn:active {
    box-shadow: inset 4px 4px 8px #babec5,
        inset -4px -4px 8px #ffffff;
}

.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.login-link a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
}