﻿/* Custom styles for login page */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #14E4BD;
    --dark-bg: #212121;
    --light-gray: #C4C4C4;
    --text-gray: #9094AE;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.login-container {
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.login-header {
    background-color: #212121;
    padding: 12px;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo específico para el header */
.header-logo {
    width: 45px;
    height: auto;
    background: none;
}

/* Logo principal más grande y centrado */
.main-logo {
    width: 320px;
    height: auto;
    margin: 0 auto;
    display: block;
    background: none;
}

.login-container {
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.login-header {
    display: flex;
    background-color: #212121;
    padding: 12px;
    text-align: center;
    height: 70px;
    align-items: center;
    justify-content: center;
}

.logo-small {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background: none;
    background-color: #212121;
    padding: 0;
}

.login-body {
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    margin: 0 auto 30px;
    text-align: center;
    background: none;
    padding: 0;
}

.logo-tagline {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 5px;
    text-align: center;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    background-color: var(--light-gray);
    border: none;
    padding: 10px 15px;
    height: auto;
    border-radius: 4px;
}

    .form-control::placeholder {
        color: #aaa;
    }

.login-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .login-btn:hover {
        background-color: #0CB096;
    }

/* Make sure the button spans the full width */
.d-grid {
    width: 100%;
}
