* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0d1b2a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.login-container {
    background-color: #1b263b;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    width: 100%;
    max-width: 500px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #415a77;
    border-radius: 5px;
    background-color: #0d1b2a;
    color: white;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #4cc9f0;
}

.btn {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #2a9d8f;
    color: white;
}

.btn-google {
    background-color: #4285f4;
    color: white;
    margin-top: 25px;
    position: relative;
}

.btn-create {
    background-color: #e9c46a;
    color: #0d1b2a;
}

.btn-recover {
    background-color: #f4a261;
    color: #0d1b2a;
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: #778da9;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #415a77;
    z-index: 1;
}

.divider span {
    background-color: #1b263b;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.button-container {
    margin-top: 20px;
}