.loginBody {
    font-family: system-ui, sans-serif;
    font-size: .92em;
    
    background-color: rgb(231, 231, 231);
    padding: 0;
    display: flex;
    margin: auto;
    align-items: center;
    min-height: 100vh;
    min-width: 100vw;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;

    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
                      url('../images/background.jpg'); 
    background-size: cover;
    background-position: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3D4F3;
    border-bottom: 3px solid #79bfb3;
    padding: 14px 16px;
    z-index: 1000;
    box-sizing: border-box;
}

.navbar-logo a{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
}

#logo-text {
    font-size: 20px;
    font-weight: bold;
}

.navbar-btns {
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.btn {
  border: none;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  border: 3px solid rgba(20,20,20,0.10);

  transition: filter 0.15s ease, transform 0.05s ease;
}

.btn:hover {
  filter: brightness(0.95);
}

.btn:active {
  filter: brightness(0.90);
  transform: translateY(1px);
}
/* Navbar End */

#loginContTitle {font-size: 20px;}

.loginMain{
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 20px;
    align-items: center;

    border-radius: 10px;
    border-style: solid;
    border-color: #79bfb3;
    border-width: 3px;
    
    width: 20%;
    height: 100%;

    box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
}

#loginTitle {font-size: 30px;}

#loginName, #loginPassword {
    padding: 5%;
    width: 80%;
    height: 100%;
    
    border-radius: 10px;
    border-style: solid;
    border-color: #C2E5DF;
    border-width: 3px;
}

#loginName:focus, #loginPassword:focus {
    border-color: #F3D4F3; 
    outline: none;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.3); 
    transition: border-color 0.3s ease;
}

#noAccountp {margin: 0;}

#loginButton {
    width: 30%;
    height: 100%;
    padding: 3% 2%;
    font-size: large;
    margin-bottom: 20px;
    
    border-radius: 10px;
    border: none;

    background-color: #F3D4F3;
}

#loginButton:hover {
  filter: brightness(0.95);
}

#loginResult {color: rgb(200, 1, 1);}
