* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    display: flex;
    height: 100vh;
    background-color: #f4f4f4;
}
.container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
.main-content {
    display: flex;
    flex: 1;
}
.left-panel {
    width: 50%;
    background: url('./image/LogoTatsu.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 20px;
}
.left-panel h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.left-panel ul {
    list-style: none;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 8px;
}
.left-panel ul li {
    margin: 10px 0;
    font-size: 1.2rem;
}
.right-panel {
    width: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}
.notification {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffcc00;
    color: black;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: visible;
    opacity: 1;
}
.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
h2 {
    margin-bottom: 10px;
}
p {
    color: #555;
    margin-bottom: 20px;
}
.google-login {
    background: #db4437;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
}
form {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
}
label {
    font-size: 0.9rem;
    margin-bottom: 5px;
}
input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.forgot-password {
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
    margin-bottom: 15px;
}
.submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}
.footer-invite {
    width: 50%;
    text-align: center;
    padding: 15px;
    background: #c9a02c;
    font-size: 1rem;
    color: white;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 8px 0 0 0;
}
.footer-invite a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {  
    .main-content {
        flex-direction: column; 
    }
    .left-panel {
        width: 100%; 
        height: 200px; 
        background-size: cover;
        background-position: center;
    }
    .right-panel {
        width: 100%; 
        padding: 20px; 
    }
    .footer-invite {
        width: 100%;
        text-align: center;
        position: relative; 
        border-radius: 0; 
    }
}