﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins-Regular, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
}

.login-container {
    width: 90%;
    max-width: 400px;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
    background-image: url(\\img\\LogoSinergiaLogin.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding: 70px 15px 74px;
}

.login-logo {
    max-width: 100px;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    color: #333;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .login-button:hover {
        background-color: #0056b3;
    }

@media (max-width: 600px) {
    .login-container {
        padding: 15px;
    }

    .login-logo {
        max-width: 80px;
    }

    h1 {
        font-size: 20px;
    }

    .login-form input, .login-button, .login-select {
        font-size: 14px;
    }
}

.step {
    transition: opacity 0.5s ease-in-out;
}

.step-hidden {
    opacity: 0;
}

.step-visible {
    opacity: 1;
}
