﻿@font-face {
    font-family: 'effra';
    src: url('../content/fonts/effra/effra.ttf') format('truetype'), url('../content/fonts/effra/effra-bold.ttf') format('truetype');
}
@font-face {
    font-family: 'effra-bold';
    src: url('../content/fonts/effra/effra-bold.ttf') format('truetype');
}
@font-face {
    font-family: 'effra-medium';
    src: url('../content/fonts/effra/effra-medium.otf') format('opentype');
}

@font-face {
    font-family: 'bwgradual-bold';
    src: url('../content/fonts/effra/bwgradual-bold.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Effra', sans-serif;
    background-color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between the containers */
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: #F2F2F2;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

    .container .login-form {
        margin-top: 10px;
    }

    .container header {
        font-size: 20px;
        text-align: center;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: 0.1em;
        color: #221E1F;
    }


.container .input-box {
    width: 100%;
    margin-top: 10px;
}

.input-box label {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.container :where(.input-box input, .select-box) {
    position: relative;
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 16px;
    color: #707070;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
}

.input-box input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}



/* Logo Styling */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

    .logo img {
        width: 300px;
        height: auto;
    }

/* Login Form Styling */
.login-form {
    text-align: center;
}

    .login-form h2 {
        margin-bottom: 20px;
        color: #333;
    }

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

    .form-group label {
        font-size: 14px;
        color: #555;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
    }

.btn-login {
    border-radius: 20px;
    border: 1px solid #F9A31A;
    background-color: #F9A31A;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 45px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-top:25px;
}

    .btn-login:hover {
        cursor: pointer;
        border: 1px solid #E09217;
        background-color: #E09217;
    }

/* Register Link Styling */
.register-btn {
    margin-top: 15px;
    font-weight:300;
}

    a {
        font-family: effra;
        color: black;
        text-decoration: none;
    }


.register-btn a:hover {
    cursor: pointer;
}


