﻿:root {
    --main-color: #178066;
    --main-color-light: #62D2A2;
    --main-color-lighter: #99f79d;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    background: #eaeaea;
    flex-direction: column;
    margin: 0;
}

.main {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    transition: transform 0.2s;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

h1 {
    color: var(--main-color);
    font-size: 2.5em;
    margin: 0.5em 0;
}

h3 {
    margin: 0.5em 0 1.5em;
}

label {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
    font-size: 1em;
    color: #555;
    font-weight: bold;
}

input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    font-size: 1em;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: var(--main-color);
    width: 100%;
    font-size: 1em;
    transition: background-color 0.3s;
}

    button:hover {
        background-color: var(--main-color-light);
    }

    button:active {
        transform: scale(0.95);
    }

.wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-password {
    float: right;
    font-size: 1.75rem;
    margin-top: -3rem;
    margin-right: 0.5rem;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    .main {
        width: 90%;
        padding: 20px;
    }

    .toggle-password {
        margin-top: -3rem;
        font-size: 1.5rem;
    }
}