* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;

    background:
    linear-gradient(rgba(0, 20, 18, 0.45), rgba(0, 15, 14, 0.65)),
    url("../image/about/about-banner.png");

    background-size: cover;
    background-position: center;

    min-height: 100vh;

    color: white;
}


/* PAGE */

.page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;
}


/* BOXES */

.login-box,
.signup-box,
.success-box {

    width: 390px;

    background: rgba(3, 21, 20, 0.94);

    border: 1px solid #12615a;

    border-radius: 12px;

    padding: 35px;

    text-align: center;

    box-shadow: 0 0 30px rgba(0, 230, 208, 0.08);
}

.signup-box,
.success-box {
    display: none;
}


/* LOGO */

.logo {
    font-size: 25px;
    font-weight: bold;

    margin-bottom: 30px;
}

.logo span {
    color: #00e6d0;
}

.logo small {
    display: block;

    font-size: 8px;

    letter-spacing: 3px;

    margin-top: 5px;

    color: #ddd;
}


/* TITLE */

h1 {
    font-size: 28px;

    margin-bottom: 10px;
}

.subtitle {
    color: #aaa;

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 25px;
}


/* INPUT */

.input-box {
    height: 48px;

    border: 1px solid #12615a;

    border-radius: 7px;

    display: flex;

    align-items: center;

    padding: 0 14px;

    margin-bottom: 12px;

    background: #031514;
}

.input-box:focus-within {
    border-color: #00e6d0;
}

.input-box i {
    color: #00e6d0;

    width: 25px;
}

.input-box input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: white;

    font-size: 13px;
}

.input-box input::placeholder {
    color: #777;
}


/* MAIN BUTTON */

.main-btn {
    width: 100%;

    height: 48px;

    margin-top: 8px;

    border: none;

    border-radius: 25px;

    background: #00e6d0;

    color: #031514;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;
}

.main-btn:hover {
    background: #20ffe8;
}


/* OR */

.or {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 25px 0;

    color: #aaa;

    font-size: 12px;
}

.or span {
    height: 1px;

    background: #24534f;

    flex: 1;
}


/* BOTTOM TEXT */

.bottom-text {
    color: #aaa;

    font-size: 13px;
}

.bottom-text button {
    border: none;

    background: transparent;

    color: #00e6d0;

    font-size: 13px;

    cursor: pointer;
}


/* SUCCESS */

.success-box {
    padding: 50px 35px;
}

.success-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #00e6d0;

    color: #031514;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.success-box h1 {
    color: white;

    margin-bottom: 10px;
}

.success-box p {
    color: #aaa;

    font-size: 13px;

    margin-bottom: 25px;
}


/* HOME BUTTON */

.home-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 25px;

    border: 2px solid #00e6d0;

    border-radius: 25px;

    color: white;

    text-decoration: none;

    font-size: 13px;
}

.home-btn:hover {
    background: #00e6d0;

    color: #031514;
}


/* MOBILE */

@media (max-width: 500px) {

    .page {
        padding: 20px;
    }

    .login-box,
    .signup-box,
    .success-box {
        width: 100%;
        padding: 28px 22px;
    }

}