@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&display=swap');

body {
    background-color: #f4f7fc;
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.logo-container {
    text-align: center;
    margin-top: 10vh; 
}

.logo-text {
    font-family: 'Clicker Script', cursive;
    font-size: 4rem;
    color: black;
    letter-spacing: 2px;
    font-weight: normal;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0rem; 
    text-transform:uppercase;
    color: #333;
    font-weight: bold;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 10px; 
    box-sizing: border-box;
}

.login-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.login-card .form-control {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.login-card .btn {
    width: 100%;
    background-color: #F9A392;
    color: white;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.login-card .btn:hover {
    background-color: #f56649;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.login-card .button-outline {
    width: 100%;
    background-color: transparent;
    color: #F9A392;
    border: 2px solid #F9A392;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.login-card .button-outline:hover {
    background-color: #f56649;
    color: white;
}

.login-card .button-clear {
    text-align: center;
    display: block;
    color: black;
    margin-top: 10px;
}

footer {
    padding: 20px;
    font-size: 1rem;
    text-align: center;
    background-color: #f4f7fc;
}

footer a {
    text-decoration: none;
    color: #B28D6D;
}

footer a:hover {
    color: #9E7B55;
}
