@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

:root {
    --primary: #ffa500;
    --secondary: #32cd32;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #080808;
    color: #ffffff;
}

button {
    border: none;
    cursor: pointer;
}

.auth-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 10;
    overflow-y: auto;
    padding-top: 2rem;
    overflow-x: hidden;
    background-color: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    max-width: 480px;
    width: 95%;
    margin: 0 auto;
}

.auth-logo {
    text-align: center;
    padding: 0 20px;
}

.auth-logo img {
    max-width: 150px;
    height: auto;
}

.auth-title {
    text-align: center !important;
    font-size: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    display: block;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #2b2b2b;
    padding: 10px 16px;
    outline: none;
    color: #ffffff;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    border-radius: 5px;
    font-size: 14px;
}

.links {
    margin-top: 20px;
}

.forgot-link {
    display: block;
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 14px;
    text-decoration: none;
}

.register-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.no-account-text {
    color: #fff;
    font-size: 16px;
}

.register-link {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.terms-check-container {
    margin: 20px 0;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #FFC107;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

.terms-check input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #FFC107;
}

.terms-check label {
    font-size: 14px;
    cursor: pointer;
    flex: 1;
}

.terms-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}