:root {
    --primary-color: #004739;
    --primary-hover: #003c30;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100vh;
    width: 100vw;
    padding: 80px 40px;
}

.new-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.context-img-container {
    background-color: #C8DEDC;
    padding: 40px;
    display: flex;
}

.context-img {
    height: auto;
    display: block;
    clip-path: polygon(0 20%, 20% 0%, 100% 0%, 100% 80%, 80% 100%, 0 100%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.container {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-self: stretch;
    max-width: 100%;
    justify-content: center;
}   

.login-card {
    background: var(--card-bg);
    padding: 0 40px;
    border-radius: 12px;
    width: 400px;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-self: stretch;
}

.kits-cloud-logo {
    margin: 40px 0 40px 0;
}

h2 {
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 20px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--primary-color);
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    font-size: 0.85rem;
}

.login-btn-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    margin: 12px 0;
}

.login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.href {
    text-decoration: none !important;
    color: #ffffff !important;
    user-select: none !important;
}

.login-btn:hover {
    background-color: var(--primary-hover);
}

.footer-text {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0;
}

.mnftr-btn-container{
    margin: 20px 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-footer-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    flex: 1;
    justify-content: flex-end;
}

a:hover {
    text-decoration: underline;
}

@media (min-width: 576) {
    .login-card {
        padding: 30px 20px;
    }
}

@media(max-width: 1199px) {
    .context-img-container {
        display: none;
    }
    .login-card {
        width:500px;
    }
}