body {
    background-color: #f8f9fc;
    font-family: 'Nunito', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.login-container {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header {
    background: linear-gradient(to right, #39a1ff 0%, #3b89ff 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
    position: relative;
    border-radius: 25px 25px 0 0;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0;
}

.logo {
    width: 70px;
    margin-bottom: 15px;
}

.header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

form {
    padding: 30px;
    padding-bottom: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #4da7de;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #39a1ff 0%, #3b89ff 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-login:hover {
    transform: translateY(-2px);
}

.login-title {
    text-align: center;
    font-size: 24px;
    margin: 20px 0 30px;
    color: #333;
    font-weight: 600;
}

.login-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    color: #888;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.login-footer p {
    margin: 0;
} 