@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-blue: #256FB6;
    --text-dark: #333;
    --text-gray: #666;
    --border-color: rgba(102, 102, 102, 0.50);
    --border-light: rgba(102, 102, 102, 0.25);
    --white: #FFF;
    --black: #111;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    /* justify-content: space-between; */
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
}

.login-conteiner {
    margin: 0;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    /* background-color: #f9f9f9; */
}

.login-form {
    max-width: 360px;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-control {
    margin-bottom: 15px;
}

.btn-primary {
    width: 100%;
}

.links {
    text-align: center;
    margin-top: 10px;
}

/* Footer */

.footer {
    background-color: #333;
    padding: 20px 0;
    color: white;
}

.footer a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.footer a:hover {
    color: #ccc;
}

/* Buttons */
.btn {
    width: 100%;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-gray {
    background: var(--black);
    color: var(--white);
    opacity: 0.25;
}

.btn-blue {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-blue:hover {
    opacity: 0.9;
}

/* Login Body Text */
.login_body>h4 {
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 400;
    text-align: center;
    margin: 1rem 0;
}

.login_body>h4>a {
    color: var(--text-dark);
}

/* Divider Line */
.bottom_line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.bottom_line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--border-light);
}

.bottom_line>span {
    position: relative;
    background: var(--white);
    padding: 0 1rem;
    z-index: 1;
}

.bottom_line>span>h4 {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

/* Links */
.left_col>a,
.right_col>a {
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    padding: 1.25rem 0;
    color: var(--white);
    margin-top: auto;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 480px) {
    .login_box {
        padding: 1.25rem;
    }

    .bottom_line_rows {
        margin-top: 2rem;
    }

    .left_col,
    .right_col {
        text-align: center;
        margin: 0.5rem 0;
    }
}