* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #3A3A3A, #555555);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.container {
    display: flex;
    max-width: 1000px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.info {
    flex: 1;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.3);
}

.info h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #FFD700;
}

.info p {
    font-size: 16px;
    margin-bottom: 20px;
}

.info ul {
    list-style: none;
}

.info ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.login-box {
    flex: 1;
    padding: 40px;
    background: white;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    padding: 10px;
    background: #f0f0f0;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
}

.input-box label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0 5px;
    background-color: white;
    font-size: 16px;
    color: #333;
    transition: 0.3s ease;
}

.input-box input:focus + label,
.input-box input:not(:placeholder-shown) + label {
    top: -12px;
    left: 10px;
    font-size: 12px;
    background-color: white;
    color: #333;
}

.btn {
    width: 100%;
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #444;
}

footer.contact-info {
    padding: 30px;
    background: #1A1A1A;
    color: white;
    text-align: center;
}

footer.contact-info h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #FFD700;
}

footer.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

footer.contact-info a {
    color: #FFD700;
    text-decoration: none;
}

footer.contact-info a:hover {
    text-decoration: underline;
}
