/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

*{
    font-family: "Syne", sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    font-family: "Syne", sans-serif;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

img.logo {
    width: 100px;
}

h2{
    color: maroon;
    margin-bottom: 0px;
}

p{
    margin-bottom: 2.5rem;
    font-size: 12px;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

input {
    width: 95%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
    outline: none;
}

label {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 0.5rem;
    pointer-events: none;
    transition: 0.3s;
    color: maroon;
}

input:focus {
    outline: auto;
}

input:focus + label,
input:not(:placeholder-shown) + label {
    top: -1.5rem;
    left: 0;
    color: rgb(61, 0, 0);
    font-size: 0.75rem;
}

button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: rgb(68, 0, 0);
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.google-login {
    margin-top: 1rem;
}

.google-login button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgb(44, 44, 44);
    border-radius: 5px;
    background: rgb(61, 61, 61);
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 1rem;
}

.google-login button img {
    width: 20px;
    margin-right: 10px;
}

.divider {
    margin: 20px 0px;
    position: relative;
}

.divider::before, .divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #c7c7c7;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider {
    color: #c7c7c7;
}