/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to right, #00C994, #128FFF);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}

/* Inputs */
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Container */
.container {
    display: flex;
    flex-wrap: wrap;
    width: 800px;
    height: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-section, .inform-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

/* Login Section */
.login-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.login-section a {
    color: #6c63ff;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 20px;
}

.login-section a:hover {
    text-decoration: underline;
}

.login-section button {
    background-color: #6c63ff;
    color: #fff;
    border: none;
	width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-section button:hover {
    background-color: #5548c8;
}

/* Signup Section */
.inform-section {
    background: linear-gradient(to bottom right, #128FFF, #E00031);
    color: #fff;
}

.inform-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.inform-section p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.inform-section button {
    background-color: #fff;
    color: #6c63ff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.inform-section button:hover {
    background-color: #e3eefe;
}

.login-section img{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-bottom: 10px;
}

.title h4{
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.title h6{
	font-size: 1rem;
	margin-bottom: 5px;
}



/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .login-section, .signup-section {
        padding: 20px;
    }
}