/* ---------------- BASE RESET ---------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', 'Arial', sans-serif;
}

/* ---------------- BODY and BACKGROUND ---------------- */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
                url('../Images/bgLog.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

/* ---------------- WHITE CONTAINER ---------------- */
.loginContainer {
    max-width: 350px;
    width: 90%;
    background: #F8F9FD;
    background: linear-gradient(0deg, rgb(246, 250, 253), rgb(246, 250, 253) 100%);
    border-radius: 40px;
    padding: 30px 35px;
    border: 5px solid rgb(246, 250, 253);
    box-shadow: rgb(74, 127, 167) 0px 30px 30px -20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ---------------- LOGO ---------------- */
.logoContainer img {
    width: 100px;            
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

/* ---------------- HEADER ---------------- */
.loginHeader h1 {
    text-align: center;
    font-weight: 900;
    font-size: 26px;
    color: rgb(82, 140, 185);
    margin-bottom: 10px;
}

/* ---------------- FORM & INPUTS ---------------- */
form, .form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

input[type="email"], 
input[type="password"],
input[type="text"],
.input {
    width: 100%;
    background: white;
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: #cff0ff 0px 10px 10px -5px;
    border-inline: 2px solid transparent;
    outline: none;
    font-size: 14px;
    color: #333;
}

input:focus {
    border-inline: 2px solid #12B1D1;
}

/* ---------------- SIGN IN / LOGIN ---------------- */
.m365-btn, 
input[type="submit"],
.login-button {
    display: block;
    width: 100%;
    font-weight: bold;
    background: linear-gradient(45deg, rgb(74, 127, 167) 0%, rgb(26, 61, 99) 100%);
    color: white !important;
    padding: 15px;
    margin: 25px auto 10px;
    border-radius: 20px;
    box-shadow: rgba(179, 207, 229) 0px 20px 10px -15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.m365-btn:hover, input[type="submit"]:hover {
    box-shadow: rgba(74, 127, 167) 0px 23px 10px -20px;
}


/* ----------------ADMIN BUTTON---------------- */
.admin-btn {
    display: block;
    width: 100%;
    font-weight: bold;
    background: #ffffff; 
    /* Blue text na naay border  */
    color: rgb(74, 127, 167) !important;
    padding: 12px;
    margin: 10px auto;
    border-radius: 20px;
    box-shadow: rgba(133, 189, 215, 0.3) 0px 10px 10px -5px;
    border: 2px solid rgb(74, 127, 167); 
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
}

.admin-btn:hover {
    background: rgb(74, 127, 167);
    color: white !important;
    box-shadow: rgba(133, 189, 215, 0.5) 0px 15px 10px -10px;
}

.back-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 12px;
    color: #888;
    text-decoration: none;
}

.admin-btn:hover {
    color: #12B1D1;
    text-decoration: underline;
}
