* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #0052a3 0%, #006bb3 50%, #00a88f 100%);
    position: relative;
}

.login-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
    text-align: center;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background-color: #00a651;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.logo-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.95rem;
    color: #6b7280;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0052a3;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    pointer-events: none;
}

.input-icon svg {
    width: 20px;
    height: 20px;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background-color: #f9fafb;
}

.form-input:focus {
    outline: none;
    border-color: #0052a3;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 82, 163, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.submit-button {
    width: 100%;
    padding: 0.875rem;
    background-color: #00a651;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.submit-button:hover {
    background-color: #008d44;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .login-card {
        padding: 2rem;
        max-width: 90%;
    }

    .logo-title {
        font-size: 1.75rem;
    }

    .logo-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem;
    }

    .logo-title {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.25rem;
    }
}
