* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%;
}

.container {
    display: flex;
    height: 100vh;
}

.form-section {
    background-color: #fff;
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo img {
    width: 480px;
    margin-bottom: 20px;
}

.form-section h2 {
    color: #1da4de;
    margin-bottom: 20px;
}

.input-container {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    max-width: 320px;
}

.input-container i.icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #1da4de;
    font-size: 1.2em;
}

.input-container input, .input-container select {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.input-container input:focus, .input-container select:focus {
    border: 1px solid #1da4de;
    outline: none;
}

.input-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 1.2em;
}

.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin-top: 20px;
}

button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
}

button:hover {
    opacity: 0.9;
}

.mensagem {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

.success {
    color: #1da4de;
}

.error {
    color: #dc3545;
}

.media-section {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .form-section, .media-section {
        width: 100%;
        height: 50%;
    }
}
