:root {
    --primary-color: #4f46e5;
    --hover-color: #f3f4f6;
    --text-color: #374151;
    --border-color: #d1d5db;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Ubuntu, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*width: 100%;*/
    /*min-height: 1024px;*/
    /*margin: 0 auto;*/
    /*overflow-x: hidden;*/
    /*position: relative;*/
}

.content-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.image-section {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #999;
    font-size: 1.5rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

p {
    margin-bottom: 2rem;
    color: #333;
}

label {
    display: block;
    margin-bottom: 0.25rem;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.03px;
    color: #666666;
}

input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.desktop-only {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.button-dropdown {
    border: none;
    display: flex;
    gap: 4px;
    background-color: transparent;
    font-weight: 700;
}

.button-login-dropdown {
    border: none;
    display: flex;
    gap: 4px;
    background-color: transparent;
    color: white;
    font-weight: 700;
}

.language-options {
    display: none;
    position: absolute;
    top: 98px;
    right: 360px;
    border: 1px solid lightgray;
    border-radius: 6px;
    padding: 12px 6px 12px 8px;
    background-color: white;
    width: 130px;
}

.login-options {
    display: none;
    position: absolute;
    top: 98px;
    right: 0;
    border: 1px solid lightgray;
    border-radius: 6px;
    padding: 12px 6px 12px 8px;
    background-color: white;
    width: 210px;
}

.ul-language-options {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-left: 10px;
    padding-right: 10px;
    list-style: none;
}

.ul-login-options {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
