﻿/* ====== GLOBAL ====== */
 
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url("../uploads/background.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

/* ====== LOGIN BOX ====== */
.login-box {
    width: 350px;
    background: #ffffff;
    padding: 30px;
    margin: 120px auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    text-align: center;
}

.login-box h2 {
    margin-bottom: 25px;
    color: #ff8339;
    font-size: 26px;
}

/* ====== INPUT FIELDS ====== */
.login-box input[type="email"],
.login-box input[type="password"] {
    width: 90%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

.login-box input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

/* ====== LOGIN BUTTON ====== */
.login-box button {
    width: 95%;
    padding: 12px;
    background: #27AC8A;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.login-box button:hover {
    background: #27AC8A;
    color:#000000;
}

/* ====== SIGNUP LINK ====== */
.login-box p {
    font-size: 14px;
    color: #444;
}

.login-box a {
    color: #ff8339;   /* orange link like screenshot */
    text-decoration: none;
    font-weight: bold;
}

.login-box a:hover {
    text-decoration: underline;
}

/* ====== ERROR MESSAGE ====== */
.error {
    color: #d9534f;
    margin-top: 10px;
    font-size: 14px;
}

.main-header {
  /*  background: rgba(0, 0, 0, 0.5); */
    padding: 14px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-box {
       color: #ffffff;
    padding: 10px 18px;
    font-size: 35px;
    font-weight: bold;
    border-radius: 4px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo and text */
}