@font-face {
    font-family: 'OpenSans';
    src: url('/static/font/OpenSans-Regular.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'OpenSans';
    height: 100%;
    background: white;
    overflow-x: hidden;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 33px;
    height: 33px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #0787A4;
    margin-left: 10px;
}

.left-panel {
    background: url("{% static 'images/main.png' %}") no-repeat bottom center;
    background-size: cover;
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    padding: 2rem;
    align-items: flex-end;
}

.right-panel {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
}

.robot-img {
    max-width: 440px;
    width: 100%;
    height: auto;
}

.form-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 0rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #282828;
    margin-top: 20px;
    justify-items: center;
}

.welcome-text {
    font-size: 16px;
    color: #282828;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 30px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #696A6C;
    border-radius: 12px;
    padding: 0.1rem 1rem;
    background: white;
    margin-bottom: 3rem;
}

.input-group img {
    width: 25px;
    height: 25px;
    margin-right: 0.5rem;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
}

.form-check-label {
    font-size: 14px;
    font-weight: 500;
    color: #0787A4;
}

.form-control {
    height: 56px;
    border-radius: 12px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(180deg, #022456 0%, #0787A4 100%);
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    padding: 12px;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #011a3a 0%, #056f88 100%);
}

a.text-primary {
    font-size: 14px;
    font-weight: 700;
    color: #0787A4 !important;
    text-decoration: none;
    border-radius: 10px;
}

a.text-primary:hover {
    text-decoration: underline;
}
a:hover {
    color:#696A6C;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}
.back-link{
    color: black;
}

@media (max-width: 768px) {
    .main-section {
    flex-direction: column;
    background-position: center;
    }

    .robot-img {
    max-width: 250px;
    margin-bottom: 2rem;
    }

    .logo-text {
    font-size: 22px;
    }

    .logo-container {
    display: none;
    }

    .left-panel {
    display: none;
    }
}