/* Importing Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #073b8a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    overflow: hidden;
}

.container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    height: 600px;
    border-radius: 20px;
    background: #f8f8f8;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.site-title {
    font-size: 36px;
    font-weight: bold;
    color: #073b8a;
}
.image-section {
    width: 30%;
    background: linear-gradient(135deg, #073b8a, #2856d4);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-section img {
    max-width: 80%;
    height: auto;
    object-fit: cover;
}

.login-section {
    width: 70%;
    padding: 2rem;
    background-color: #fdfdfd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

input {
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: #1d4e43;
}

.links {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.links a {
    color: #1d4e43;
    text-decoration: none;
    font-size: 0.9rem;
}

button {
    background-color: #073b8a;
    color: #fff;
    font-size: 1rem;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #1764f5;
}

.register-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

.register-text a {
    color: #1d4e43;
    text-decoration: none;
    font-weight: 600;
}

footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    font-size: 0.8rem;
    color: #ddd;
}

footer a {
    color: #ccc;
    text-decoration: none;
}
@media (max-width: 768px) {
    .site-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 24px;
    }
}