/* Root Variables */
:root {


  --font-color: #2E3192;
  --bg-color1: #25324D;
  --bg-color1-hover: #25329D;
  --bg-dark: #202B42;
  --light_bird_color: #92BDC4;
  --orange: #eb931d;

}





@import url('https://fonts.googleapis.com/css?family=Poppins');

html {
   /* -webkit-font-smoothing: antialiased;  */
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color1);
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

body {
        margin: 0;
        padding: 0;
      
        color: var(--font-color);
        height: 100vh;
        -webkit-tap-highlight-color: transparent;
    }
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}



@media (max-width: 750px) {

    main {
        padding-top: 200px;

    }

}



.syne-regular {
  font-family: "Syne", serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Regular weight */
  font-style: normal;
}

.syne-bold {
  font-family: "Syne", serif;
  font-optical-sizing: auto;
  font-weight: 700; /* Bold weight */
  font-style: normal;
}


/* SELECTED PAGE MEMBERS */
.header-middle li:nth-child(5) a::after {
    width: 110%; /* selected page highlighted underline */
}

.header-middle li:nth-child(5) a {
    color: #6164b8; /* selected page highlighted color */
}



.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light_bird_color);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 25px 20px; /* reduced padding */
    width: 320px; /* slightly smaller */
    max-width: 100vw;
    transition: all 0.3s ease;
    margin: auto;
}

.login-container:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.input-group {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--light_bird_color);
}

.login-container a {
	color: var(--light_bird_color);
}

input[type="text"],
input[type="email"],
input[type="password"] {
    xwidth: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    text-align: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border: 2px solid var(--light_bird_color);
    background-color: rgba(255,255,255,0.1);
}

button,
input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: var(--orange);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
 
}

button:hover,
input[type="submit"]:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.signup-link {
    text-align: center;
    margin-top: 15px;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .login-container {
        width: 90%;
        padding: 30px 20px;
    }
}

@media (max-height: 600px) {
    body, html {
        align-items: flex-start;
        padding-top: 20px;
    }
}

