@import url('https://fonts.cdnfonts.com/css/agrandir');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Background image */
    background-image: url("../../resources/Login_background.png");
    background-color: #4a4a54;
    background-size: cover;
    background-position: center;
    height: 100vh;
    overflow: hidden; /* Prevents scrollbars if image is large */
}

.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 1.2rem;
    color: #f4c542;
    font-weight: 400;
    letter-spacing: 0.5px;
    z-index: 10;
}

.welcome-section {
    color: #f9db35;
}

.welcome-section p {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.welcome-section h1 {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
}

.login-box {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px; /* Limits width on large screens */

    h2{
        font-weight: 600;
    }
}

/* Override/Extend Bootstrap form control */
.form-control {
    border-radius: 8px;
}

.login-btn {
    background-color: #fcc64e;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    color: white;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #e0b33a;
}

.forgot-password a {
    color: #333;
    font-weight: 600;
}

.forgot-password a:hover {
    color: #f4c542;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
    .welcome-section h1 {
        font-size: 2.5rem;
    }
}