@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap');

body {
    margin: 0;
    font-family: 'Outfit', 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f0f4f9 0%, #e6efff 100%);
    color: #1f1f1f;
    min-height: 100vh;
}

.container-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card-login {
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease;
}

h1 {
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #5f6368;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background-color: #fcfcfc;
}

.form-input:focus {
    border-color: #0084ff;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 132, 255, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #0084ff, #0073e6);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(to right, #0073e6, #0062c4);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 132, 255, 0.3);
}

.go-back {
    margin-top: 25px;
}

.go-back a {
    color: #5f6368;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.go-back a:hover {
    color: #0084ff;
}