/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f9fa, #777777);
    height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.login_centered{
    flex: 1;
    min-height: 100vh;
    /* or any height you need */
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
}
/* Login container */
.login-container {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Logo */
.logo img {
    width: auto;
    height: auto;
    /* margin-top: 20px; */
    margin-bottom: 10px;
}

/* Form styling */
.login-form h2 {
    color: #333;
    margin-bottom: 25px;
}

.form-group {
    text-align: left;
    margin-bottom: 10px;
}

.form-group label {
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

/* Button */
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #4e4376;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background-color: #2b5876;
}

/* Signup link */
.signup-link {
    margin-top: 15px;
    font-size: 14px;
}

.signup-link a {
    color: #4e4376;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

::placeholder {
    color: #9A9A9A;
    font-weight: 300;
    font-style: italic;
}

::-moz-placeholder {
    color: #9A9A9A;
    font-weight: 300;
    font-style: italic;
}

::-webkit-input-placeholder {
    color: #9A9A9A;
    font-weight: 300;
    font-style: italic;
}