* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    height: 100vh;
    background: linear-gradient(to right, #1a1d23, #28374a);
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.container {
    display: flex;
    width: 80%;
    max-width: 900px;
    height: 500px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 0.5s forwards;
}

.brand {
    flex: 1;
    background: linear-gradient(135deg, #007bff, #0056b3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (max-width: 800px) {
	.brand {
		display: none;
	}
}

.login-box {
    flex: 1;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-box h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.login-box form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-box input, .login-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: 0.3s;
    font-size: 16px;
    text-align: center;
}

.login-box input:focus, .login-box select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.login-box button {
    width: 40%;
    padding: 8px;
    border-radius: 5px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    min-width: 70px;
}

.login-box button:hover {
    background: #0056b3;
}
