/* Background + base layout */
body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("/images/hex-bg.svg") repeat;
    background-size: cover;
}

main {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
    margin: 0px !important;
    height: auto !important;
    padding-bottom: 20%;
}

/* Login container */
.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-box {
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    width: 100%;
}

/* Logo */
.logo {
    width: 350px;
    margin-bottom: 1rem;
}

/* Heading */

.title-box {
    text-align: center;
    margin-bottom: 2rem;
}
.title {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #333;
    margin-top: 0;
}

/* Form elements */
.form-group {
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 16px;
    color: #555;
    font-weight: 300;
    background: transparent;
    outline: none;
    box-sizing: border-box;
}

input::placeholder {
    color: #999;
    font-weight: 300;
    opacity: 1;
}

input:focus {
    border-color: #007bff;
}

/* Checkbox */
.checkbox {
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #666;
    font-weight: 300;
    margin-bottom: 2rem;
}

.checkbox input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Login button */
.login-btn {
    background-color: #2563a5;
    color: white;
    padding: 6px 15px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 14px;
    float: right;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: #1c4f85;
}
