﻿
/**/

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

.container {
    display: flex;
    min-height: 100vh;
}

.login-box {
    flex: 1;
    padding: 60px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.logo {
    height: 140px;
    margin-bottom: 20px;
    width: 150px;
}

h2 {
    font-size: 32px;
    margin: 0 0 10px;
}

p {
    color: #666;
    margin-bottom: 30px;
}

input[type="text"],
input[type="password"] {
    width: 93%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 97%;
}

.btn-primary {
    background: #046619;
    color: #fff;
    border: none;
    padding: 12px;
    flex: 1;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    background: #eaeaea;
    color: #000;
    border: none;
    padding: 12px;
    flex: 1;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #aaa;
}

.social-logins button {
    width: 100%;
    background: #f0f0f0;
    border: none;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 15px;
    cursor: pointer;
}



.preview-box {
    flex: 1;
    background: #919faa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* hides anything that overflows */
}

    .preview-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* cover = fill the box, maintain aspect ratio */
        display: block;
    }

.error-message {
    background-color: #ffe3e3;
    color: #b00020;
    border: 1px solid #f5c2c2;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    width: 91.5%;
}
.powered-by-footer {
    text-align: center;
    margin-top: 20px;
    color: white;
    font-size: 0.9rem;
    padding: 10px 0;
}