.auth-box{
    display: flex;
    margin-top: 100px;
    width: 1280px;
    left: 0;
    position: absolute;
    height: 60vh;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0,0,0,.1)
}

.auth-box img{
    max-width: 816px;
    height: 60vh;
}

.auth-banner-logo{
    position:absolute;
    top: 0;
    right:0;
}
.auth-bg{
    position: relative;
}

.login-container {
    background-color: #fff;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 467px;
    height: 60vh;
}

.auth-right{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.login-container h2 {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
}

.input-box {
    margin-bottom: 16px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
}

input:focus {
    border-color: #4F46E5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #001C54;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #003080;
}

.register-link {
    margin-top: 16px;
    text-align: center;
}

.register-link a {
    color: #1D4ED8;
    text-decoration: none;
    font-size: 14px;
}

.register-link a:hover {
    text-decoration: underline;
}

/* registration */
.registration-container {
    max-width: 1000px;
    margin: 20px auto;
    background-color: #fff;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.registration-container h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.registration-container p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group textarea,
.form-group input {
    padding: 10px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4F46E5;
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.form-group label {
    font-size: 14px;
    margin-bottom: 4px;
    color: #374151;
}

.form-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-actions button {
    padding: 12px 24px;
    background-color: #001C54;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-actions button:hover {
    background-color: #003080;
}

.form-actions a {
    font-size: 14px;
    color: #6B7280;
    text-decoration: none;
}

.form-actions a:hover {
    text-decoration: underline;
}

* {
    margin: 0;
    padding: 0;
}

.main {
    display: flex;
    justify-content: center;
}

body{
    background: url('/../images/background.jpg');
    font-family: 'Open Sans';
    height: 100%;
}

.welcome-header {
    height: 100px;
    width: 100%;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menu-items{
    display: flex;
    flex-direction: row;
}
.menu-items li{
    list-style: none;
    margin: 10px;
}

.vue-main{
    display:flex;
    flex-direction: row;
    height: 80vh;
}

.entry-banner{
    height: auto;
    width: 100%;
}

.entry-text-block{
    width: 900px;
}

.entry-text-block > p{
    text-align: justify;
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #f2f5f7;
    border-top: 4px solid #1e518f;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 999;
}

.footer-label {
    background-color: #ccff00;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 14px;
}



