* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #242735, #2c2e42);
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background-color: #2e3240;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.left-side {
    flex: 1;
    background-color: #1f2430;
    color: #ffffff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url('asfalt-dark.png'); /* Custom owl-themed background */
    background-size: cover;
}

.left-side .logo img {
    max-width: 200px;
    margin-bottom: 30px;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5)); /* Add subtle shadow */
}

.left-side .welcome-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffd166; /* Soft gold accent */
}

.left-side .welcome-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #cfd1da;
}

.right-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2e3240;
    background-size: cover;
}

.login-panel {
    width: 100%;
    max-width: 400px;
    background-color: #3a3e50;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #ffd166; /* Gold accent border */
    position: relative;
    overflow: hidden;
}

.login-panel h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffd166; /* Gold accent */
    font-size: 28px;
    font-weight: 600;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #c0c2cf;
    font-size: 16px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #606375;
    border-radius: 8px;
    font-size: 16px;
    color: #ffffff;
    background-color: #2e3240;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus {
    border-color: #ffd166;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 209, 102, 0.5);
}

.options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.options a {
    color: #ffd166;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.options a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 209, 102, 0.5);
}

.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #424759, #6d7391);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.login-button:hover {
    background: linear-gradient(135deg, #6d7391, #424759);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        padding: 30px;
    }

    .left-side {
        text-align: center;
        align-items: center;
    }

    .left-side .logo img {
        max-width: 150px;
    }

    .left-side .welcome-text h1 {
        font-size: 28px;
    }

    .right-side {
        padding-top: 20px;
    }
}

@media (max-width: 500px) {
    .left-side .welcome-text p {
        font-size: 16px;
    }

    .login-panel h2 {
        font-size: 24px;
    }

    .login-panel {
        padding: 20px;
    }
}
