.main-container {
    display: flex;
    flex-direction: row;
    height: 100%;
    padding: 0;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.title {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255,255,255);
    font-family: Inter, sans-serif;
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: fit-content;
    gap: 50px;
}

.form-card {
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: fit-content;
    background: rgba(30, 0, 255, 0.5);
    border-radius: 25px;
    padding: 20px;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: fit-content;
    border-radius: 25px;
    padding: 20px;
    gap: 20px;
}

.greeting {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255,255,255);
    font-family: Inter, sans-serif;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 0;
}

.input-section {
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
    gap: 20px;
}

.mb-3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mb-3 label {
    color: #256FC3;
    font-size: 14px;
    font-weight: 500;
}

.mb-3 input,
.mb-3 select {
    height: 45px;
    width: 400px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid #0048FF;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
}

.mb-3 input:focus,
.mb-3 select:focus {
    outline: none;
    border-color: #00FF6F;
}

.login-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 400px;
    border-radius: 12px;
    background-color: #0048FF;
    border: 2px solid #0048FF;
    color: #fff;
    transition: background-color .5s ease, border .5s ease;
    cursor: pointer;
    font-size: 20px;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #00FF6F;
    border: 2px solid #00FF6F;
    transition: background-color .5s ease, border .5s ease;
}

.login-btn span {
    width: auto;
    height: auto;
    background: rgba(32, 32, 32, 0);
    color: #fff;
}

.register-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 400px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid #0048FF;
    color: #fff;
}


.register-here {
    text-decoration: none;
    color: #00FF6F;
    font-weight: bold;
}

.input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  height: fit-content;
  gap: 20px;
}

@media (max-width: 768px) {
    .main-container, .form-wrapper, .form-card, .input-section, .form-field, .login-btn, .mb-3 input, .register-link{
        width: 100%;
    }
    .register-link{
        font-size: 14px;
    }
}