/* =========================================
   LOGIN PAGE
========================================= */

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: #1a1f27;
    border: 1px solid #2b3442;
    border-radius: 18px;
    padding: 40px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #ffffff;
}

.login-header p {
    color: #9aa4b2;
    font-size: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #c8d0da;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: #ff8a00;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.login-btn:hover {
    opacity: 0.9;
}

.login-error {
    background: rgba(231,76,60,0.15);
    color: #ff6b6b;
    border: 1px solid rgba(231,76,60,0.3);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    text-align: center;
}
.landing-grid {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: auto;
    padding: 40px;
}

.landing-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.landing-title {
    font-size: 72px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.landing-subtitle {
    font-size: 22px;
    color: #c8d0da;
    max-width: 700px;
}

.landing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #d7dde5;
    font-size: 18px;
}

.preview-cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.preview-card {
    flex: 1;
    min-height: 180px;
    background: #1a1f27;
    border: 1px solid #2b3442;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.login-footer{
    margin-top:30px;
    text-align:center;
    color:#9ba3b0;
    font-size:14px;
}

.register-link{
    display:inline-block;
    margin-top:10px;
    color:#ff8a00;
    font-weight:600;
    text-decoration:none;
}

.register-link:hover{
    text-decoration:underline;
}