/* ADMIN PAGE */

body {
    background: #14131a;
    color: #f4f1ff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px;
}

/* LOGIN BOX */

#login-section {

    width: 320px;
    margin: 30px auto;

    background: #1e1c26;

    border: 1px solid #343040;
    border-radius: 14px;

    padding: 20px;

    box-shadow: 0 8px 20px rgba(0,0,0,.3);

}


#login-section h2 {

    font-size: 20px;
    margin-bottom: 15px;

}


#login-section input {

    margin-bottom: 10px;

    padding: 10px;

    font-size: 14px;

}


#login-section button {

    margin-top: 10px;

    padding: 10px;

    font-size: 14px;

}


/* BIG ADMIN AREA */

#admin-content {

    max-width: 700px;

    margin: 40px auto;

    background: #1e1c26;

    border: 1px solid #343040;

    border-radius: 18px;

    padding: 35px;

}

/* Login + Admin Containers */

#login-section,
#admin-content {
    max-width: 700px;
    margin: 40px auto;
    background: #1e1c26;
    border: 1px solid #343040;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}


/* Headings */

h1,
h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
}


/* Labels */

label {
    display: block;
    margin-top: 18px;
    margin-bottom: 8px;
    color: #cfc7e8;
    font-size: 14px;
}


/* Inputs */

input,
textarea,
select {

    width: 100%;
    box-sizing: border-box;

    background: #111018;
    color: white;

    border: 1px solid #403b50;
    border-radius: 10px;

    padding: 12px;

    font-size: 15px;

    outline: none;

    transition: border .2s, box-shadow .2s;
}


input:focus,
textarea:focus,
select:focus {

    border-color: #9b7cff;

    box-shadow:
    0 0 10px rgba(155,124,255,.35);

}


textarea {

    min-height: 120px;

    resize: vertical;

}


/* Buttons */

button {

    width: 100%;

    margin-top: 25px;

    padding: 14px;

    border: none;

    border-radius: 12px;

    background: #8c6cff;

    color: white;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition:
    transform .15s,
    background .15s;

}


button:hover {

    background: #a58cff;

    transform: translateY(-2px);

}


button:active {

    transform: translateY(0);

}


/* Adopt Preview */

#adopt-preview {

    margin-top: 30px;

    text-align: center;

}


#adopt-preview img {

    max-width: 300px;

    border-radius: 14px;

    border: 1px solid #403b50;

}


/* Mobile */

@media(max-width:700px){

    body {

        padding: 15px;

    }


    #login-section,
    #admin-content {

        padding: 20px;

    }

}