﻿/* auth-styles.css - STYLES FOR LOGIN & CREATE ACCOUNT PAGES ONLY */

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
}

.main-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.account-box {
    width: 100%;
    max-width: 900px;
    min-height: 500px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.account-left {
    background: linear-gradient(45deg, #007bff, #00d2ff);
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
}

.account-left h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

.account-left p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.account-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 320px;
}

.account-right .login-header {
    margin-bottom: 30px;
    text-align: center;
}

.account-right .login-header h3 {
    font-weight: 600;
    color: #333;
    font-size: 1.75rem;
}

.form-control {
    border-radius: 8px; /* This is the line that makes corners rounded */
    border: 1px solid #ddd;
    padding: 12px 15px;
    height: auto;
    transition: all 0.3s ease;
}

.login-or {
    position: relative;
    text-align: center;
    margin: 20px 0;
    color: #aaa;
}

.or-line {
    background-color: #eee;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
}

.span-or {
    background-color: #fff;
    padding: 0 10px;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .account-box {
        flex-direction: column;
    }

    .account-left {
        border-radius: 20px 20px 0 0;
        padding: 30px;
    }

    .account-right {
        border-radius: 0 0 20px 20px;
    }
}
