body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.logo {
    margin-right: 15px;
}

.bank-name {
    font-size: 24px;
    font-weight: 700;
    color: #004790;
    margin: 0;
}

.login-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
}

.title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 30px;
}

.input-group {
    text-align: left;
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 400;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out;
}

.input-group input:focus {
    outline: none;
    border-color: #004790;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background-color: #004790;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #003a72;
}

.links {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.link {
    color: #004790;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.link:hover {
    color: #003a72;
    text-decoration: underline;
}