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

body {
    background: linear-gradient(135deg, #0767b6, #508ab1, #5991b6, #0730b6);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

@keyframes gradient {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.container-login {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    overflow: hidden;
    width: 900px;
    max-width: 100%;
}

/* Container interno */
.container-content {
    display: flex;
    width: 100%;
}

/* Left Panel */
.left-panel {
    background-color: #040A4F;
    color: white;
    width: 40%;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.left-panel .logo {
    max-width: 304px;
    margin-bottom: 29px;
}

.left-panel h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.left-panel p {
    text-align: center;
    margin-bottom: 20px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: white;
    color: #040A4F;
}

/* Right Panel com Blur */
.right-panel {
    width: 60%;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 10, 79, 0.3); /* tom azul escuro com transparência */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.form-container {
    width: 100%;
    max-width: 380px;
}

.form-container h2 {
    text-align: center;
    color: white;
    margin-bottom: 10px;
}

.form-container p {
    text-align: center;
    color: #ddd;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s;
}

.form-group input::placeholder {
    color: #e0e0e0;
}

.form-group input:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Botão */
.btn-solid {
    width: 100%;
    background: linear-gradient(135deg, #040A4F, #0767b6);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-solid:hover {
    background: linear-gradient(135deg, #0767b6, #040A4F);
}

.footer-login {
    display: none;
}
