:root {
    --primary: #121212;
    --secondary: #1e1e1e;
    --accent: #ff5722;
    --text: #ffffff;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab-button {
    flex: 1;
    padding: 10px;
    background-color: var(--secondary);
    border: none;
    color: var(--text);
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab-button.active {
    background-color: rgb(243 134 48 / var(--tw-bg-opacity, 1));
}

.form {
    background-color: var(--secondary);
    padding: 20px;
    border-radius: 10px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text);
}

input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--text);
    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: var(--accent);
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text);
}

.btn-primary:hover {
    background-color: #e64a19;
}
.link {
    color: var(--text);
    text-decoration: none;
}

.link span {
    color: var(--accent);
    font-weight: bold;
}

.text-right {
    text-align: right;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
    margin: 20px 0;
}

.hidden {
    display: none;
}

#togglePassword {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

@media screen and (min-width: 640px) {
    .responsiveMain {max-width: 75%; border: 2px dashed #6b7280; border-radius: 10px; padding-bottom: 30px;}
}
@media screen and (min-width: 1080px) {
    .responsiveMain {max-width: 60%; border: 2px dashed #6b7280; border-radius: 10px; padding-bottom: 30px;}
}
@media screen and (min-width: 1600px) {
    .responsiveMain {max-width: 50%; border: 2px dashed #6b7280; border-radius: 10px; padding-bottom: 30px;}
}

@media screen and (min-width: 2000px) {
    .responsiveMain {max-width: 40%; border: 2px dashed #6b7280; border-radius: 10px; padding-bottom: 30px;}
}
