@import url('https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100..900&display=swap');


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

}
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(circle, #270a0a 25%, #000000 100%);


}



.signupWindow {
    padding: 30px 20px;
    width: 400px;
    height: 550px;
    background-color: #111111;
    box-hadow: -10px 10px 20px rgba(189, 29, 29, 0.229);
    display: flex;
    flex-direction: column;
    z-index: 2;
    border-radius: 40px 0 0 40px;
}
.option {
    height: max-content;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: transparent;
    border: none;
    display: flex;
    gap: 15px;
    justify-content: center;
}
button {
    font-family: "Rye", serif; /* Western font */
    font-size: 20px;
    color: #d1b280; /* Aged text / desert sand color */
    background-color: #1a1a1a;
    margin: 0;
    width: 130px;
    height: 45px;
    border: 2px solid #8a0303;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}
button:focus {
    background-color: #8a0303;
    color: #fff;
    box-shadow: 0px 0px 10px #8a0303;
}
button:hover {
    background-color: #8a0303;
    color: #fff;
    box-shadow: 0px 0px 10px #8a0303;
}

.slideShow {
    width: 500px;
    height: 550px;
    background-color: #000;
    border-left: none; 
    box-shadw: -10px 10px 20px rgba(189, 29, 29, 0.229);
    border-radius: 0 40px  40px 0;
    overflow: hidden; 
}

/* Added targeting for your image to give Arthur that gritty, wanted-poster feel */
.slideShow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(40%) contrast(120%) brightness(80%) saturate(80%);
}
.slide {
    display: none;
    animation: fade 2s ease-out forwards;
    object-fit: cover; 
    object-position: top;
}
@keyframes fade {
  from { opacity: 0.5; transform: scale(1);}
  to { opacity: 1;transform: scale(1.05); }
}

.detailbox {
    flex-direction: column;
    border: none;
    border-radius: 0px;
    width: 100%;
    padding: 0 30px;
}
label {
    font-family: "Ruda", sans-serif;
    font-weight: bold;
    margin-left: 0;
    margin-top: 15px;
    font-size: 14px;
    color: #a89f91;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
input {
    font-family: "Ruda", sans-serif;
    margin: 5px 0 10px 0;
    height: 35px;
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-bottom: 2px solid #8a0303; /* Red underline focus */
    color: #fff;
    padding-left: 10px;
    font-size: 16px;
}
input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid #d1b280;
}
#signup{
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}
#signup button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 150px;
    height: 45px;
    border-radius: 0px;
}
#login {
    display: none;
    flex-direction: column;
    padding: 10px 0;
}
#login button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 150px;
    height: 45px;
    border-radius: 0px;
}

#error {
    color: #d1b280;
}
