
html,
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
}

h1 {
    margin: 8px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.gray {
    color: #737373;
}

.centered {
    text-align: center;
}

p {
    font-size: 0.875rem;
}

a:not(.cta-button) {
    font-weight: 500;
    font-size: 0.875rem;
    color: #171717;
    transition: all 0.2s ease-out;
}

.small-text,
.small-text a {
    font-size: 0.75rem;
    color: #737373;
}

label {
    font-size: 0.875rem;
    font-weight: 500;
}

.grid {
    display: grid;
    width: calc(100% - 32px);
    height: calc(100vh - 32px - 2px);
    margin: 16px;
    grid-template-columns: 1fr 1fr;
}

/* Left side image starts */
.brand {
    position: relative;
    background: linear-gradient(140deg, #ecf4ff, #cde2ff);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slogan {
    font-size: 2.25rem;
    font-weight: 500;
}

.brand-content {
    z-index: 3;
    position: relative;
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.highlight-row {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}

a.cta-button {
    text-decoration: none;
    background-color: #ff6105;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}

a.cta-button:hover {
    background-color: #ff8137;
    color: #fff;
}

.screenshot-container {
    z-index: 2;
    position: relative;
    bottom: 0;
    flex-grow: 1;
    min-height: 200px;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 16px 16px 0 0;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    border-style: solid;
    border-width: 1px 1px 0 1px;
    padding: 16px;
}

.screenshot-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.blob-container {
    z-index: 1;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 60%;
}

.blob {
    width: 100%;
    height: 100%;
}

.valo-brand-img {
    width: 120px;
}

@media screen and (max-width: 768px) {
    .brand-content {
        padding: 32px;
    }
}

/* Left side image ends */

.content {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .grid {
        display: block;
    }
}

.form-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.form-input {
    width: calc(100% - 24px);
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-family: "Inter";
    height: 32px;
    padding: 0 12px;
    box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.05);
}

.form-input::placeholder {
    color: #d9d9d9;
    opacity: 1; /* Firefox */
}

.forgot-password-container {
    display: flex;
    justify-content: center;
}

.btn {
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    outline: none;
    border-style: none;
    border-radius: 6px;
    height: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-out;
    background-color: #171717;
    color: #ffffff;
}

.btn:hover {
    background-color: #404040;
    color: #ffffff;
}

.btn.secondary {
    background-color: #ffffff;
    color: #171717;
    border: 1px solid #e5e5e5;
}

.btn.secondary span {
    margin-left: 16px;
}

.btn.secondary:hover {
    background-color: #f5f5f5;
}

.btn-logo {
    height: 16px;
}

.user-is-tabbing .btn:focus {
    box-shadow: 0 0 0 5px #0077b6;
}

.login-methods-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.line {
    flex-grow: 1;
    width: 100%;
    height: 1px;
    background-color: #d4d4d4;
}

.nowrap {
    white-space: nowrap;
}

.red-text {
    color: #c81e1e;
    font-size: 0.875rem;
    display: none;
}

.red-text.visible {
    display: block;
}

.login-method-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
