/* @font-face {
      font-family: 'Roboto';
      src: url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.woff2') format('woff2'),
           url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxO.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    } */

body {
    font-family: "Roboto", sans-serif;
    background: rgba(224, 229, 232, 1);
    min-height: 60vh;
}

* {
    box-sizing: border-box;
}

.logo {
    width: 100px;
    height: 20px;
    margin: 20px auto 20px auto;
    text-align: center;
    margin-left: 20px;
}

img {
    width: 150px;
    margin-bottom: 20px;
}

.container {
    margin: 0 auto;
    width: 500px;
    padding: 32px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 11px 11px 100px rgba(0, 0, 0, 0.25);
    animation: fadeSlide 1.5s ease forwards;
    /* opacity: 0; */
    transform: translateY(50px);
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 780px) {
    .container {
        padding: 20px;
        width: 354px;
        height: 544.79998779296875px;
        top: 102.5px;
        left: 24px;
        border-radius: 10px;
        padding: 24px;
        gap: 24px;
        opacity: 1;
    }
}
@media (max-width: 480px) {
    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px auto 40px auto;
        width: 100%;
    }
    .logo img {
        margin: 0 auto;
        display: block;
    }
    .container {
        padding: 15px;
        width: 354px;
        height: 530px;
        top: 102.5px;
        left: 24px;
        border-radius: 10px;
        padding: 24px;
        gap: 24px;
        opacity: 1;
    }
}

h1,
p,
h4 {
    text-align: center;
}

p {
    padding: 0 20px;
    font-size: 13px;
    margin-top: -10px;
}

button {
    background: rgba(22, 60, 133, 1);
    color: aliceblue;
    font-size: 20px;
    cursor: pointer;
}

a {
    color: aliceblue;
    text-decoration: none;
}

.btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid;
    background: rgba(22, 60, 133, 1);
    transition: transform 0.2s ease;
}

.btn:hover {
    background-color: white;
    border: 1px solid;
}

.create {
    color: rgba(22, 60, 133, 1);
    text-decoration: none;
}

input {
    width: 100%;
    height: 46px;
    border-radius: 10px;
    padding: 12px;
    border: 1.1px solid rgba(111, 150, 209, 1);
    margin-bottom: 15px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
    border: 1.5px solid rgba(22, 60, 133, 1);
    box-shadow: 0 0 8px rgba(22, 60, 133, 0.5);
    outline: none;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

h4 {
    color: rgba(22, 60, 133, 1);
}

.remember-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 20px;
    user-select: none;
}

.remember-box input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #163c85;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    padding: 10px;
}

.remember-box input[type="checkbox"]:hover {
    box-shadow: 0 0 5px rgba(22, 60, 133, 0.5);
}

.remember-box input[type="checkbox"]:checked {
    background-color: #163c85;
    border-color: #163c85;
}

.remember-box input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    top: 1px;
    left: 2px;
    font-size: 14px;
    color: #fff;
}

.remember-box label {
    font-size: 14px;
    color: #000;
    cursor: pointer;
    user-select: none;
}
