﻿:root {
    --Gray20: #F7F7F7;
    --Gray30: #F0F0F0;
    --Gray35: #D1D1D1;
    --Gray40: #7C7C7C;
    --Gray80: #1F1F1F;
    --RTXRed: #CE1126;
    --RTXDarkRed: #8D0E1D;
    --Black: #000000;
    --PillGreen: #50d264;
    --PillRed: #d20532;
    --PillPrimary: #D1D1D1;
    --PillWarning: #ffee17;
    --PillSecondary: #2d6bff;
    --White: #FFFFFF;
    --AlertRed: #d20532;
    --AlertGreen: #50d264;
    --AlertYellow: #ffee17;
    --AlertBlue: #2d6bff;
    --AlertOrange: #f2a900;
    --DarkGray: #1F1F1F;
}

body {
    font-family: Roboto;
    color: black;
    letter-spacing: .2rem;
    min-width: 1850px; /* Suppose you want minimum width of 1000px */
    width: auto !important; /* Firefox will set width as auto */
}

.sidebar {
    margin-left: 0;
    height: 100%;
    width: 444px;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    overflow-x: hidden;
    color: black;
}


.mainContents {
    margin-left: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 990;
    top: 0;
    left: 444px;
    background-color: white;
    color: black;
}

img {
    height: 100%;
    object-fit: cover;
}

.header {
    padding-left: 48px;
    padding-top: 100px;
    padding-bottom: 60px;
    font-size: 34px;
    font-weight: 400;
}

.title {
    padding-left: 48px;
    letter-spacing: .1rem;
    font-size: 12px;
}

.login_field {
    font-size: 14px;
    width: 300px;
    margin-top: 6px;
    margin-left: 48px;
    margin-bottom: 30px;
    padding: 6px 20px;
    letter-spacing: .05rem;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--Gray35);
}

.link {
    color: blue;
    cursor: pointer;
    text-decoration: none;
    float: right;
    letter-spacing: .1rem;
    padding-right: 48px;
}


.btn_primary {
    display: inline-block;
    color: var(--White) !important;
    text-align: center;
    vertical-align: middle;
    background-color: var(--RTXRed);
    border: 1px solid transparent;
    padding: 8px 16px;
    letter-spacing: .2rem;
    font-size: 14px;
    width: 340px;
    height: 50px;
    margin-top: 36px;
    margin-left: 48px;
    cursor: pointer;
}

    .btn_primary:hover {
        background-color: var(--RTXDarkRed);
    }

.btn_secondary {
    display: inline-block;
    color: black;
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid var(--RTXRed);
    letter-spacing: .2rem;
    font-size: 14px;
    width: 334px;
    height: 46px;
    margin-top: 36px;
    margin-left: 48px;
    text-decoration: none;
    cursor: pointer;
}

    .btn_secondary:hover {
        background-color: var(--Gray30);
    }