/* General styles */
body {
    font-family: "Urbanist", sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Outer container styling */
.outercontainer {
    width: 100%;
    max-width: 900px;
    background-color: #83d4df;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}


/* Paracontainer styling */
.paracontainer {
    flex: 1;
    margin-right: 1.5rem;
    padding: 1rem;
    text-align: left;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: #00796b;
    line-height: 1.5;
    font-weight: 600;
    transition: transform 0.3s ease;
}
.gif-container {
    text-align: center;
    margin: 20px 0;
}

.animated-gif {
    max-width: 100%; /* Ensures responsiveness */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Optional rounded corners */
    max-width: 247px;
}

/* Container styling */
.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Logo styling */
.container img {
    max-width: 150px;
    margin-bottom: 1rem;
}

/* Heading styling */
.container h1 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #333;
}

/* Form input styling */
#register-form input,
#register-form select {
    width: 100%;
    padding: 10px;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Button styling */
#register-form button {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#register-form button:hover {
    background-color: #218838;
}

/* Link styling */
.container p a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.container p a:hover {
    text-decoration: underline;
}

/* Button styling */
form button, .role-button {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px;
    transition: background-color 0.3s ease;
}

form button:hover, .role-button:hover {
    background-color: #218838;
}

/* Input box styles */
form input {
    width: 80%; /* Full width of the parent container */
    padding: 12px; /* Space inside the input box */
    margin: 5px 0; /* Space above and below the input */
    border: 2px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    font-size: 16px; /* Text size */
    color: #333; /* Text color */
    background-color: #f9f9f9; /* Light background color */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for focus state */
}

/* Placeholder text styles */
form input::placeholder {
    color: #aaa; /* Light gray color */
    font-style: italic; /* Italic placeholder text */
}

/* Focus state styles */
form input:focus {
    outline: none; /* Remove default browser outline */
    border-color: #28a745; /* Green border on focus */
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.5); /* Soft green glow on focus */
    background-color: #fff; /* Slightly brighter background when focused */
}
.logbutton{
    background-color: orangered;;
}
.styled-line {
    border: none;
    border-top: 2px solid #ccc; /* Light gray line */
    margin: 20px 0; /* Space around the line */
    width: 100%; /* Full width of the parent container */
}


/* Social logo styling */
.social-logo {
    width: 50px; /* Adjust the size of the image */
    height: auto;
    display: inline-block;
    margin: 15px;
    cursor: pointer; /* Show a pointer cursor on hover */
    transition: transform 0.3s ease;
}

.social-logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Responsive design */
@media (max-width: 768px) {
    .outercontainer {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        align-items: center; /* Center align stacked content */
    }

    .paracontainer {
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: center; /* Center align text for smaller screens*/
    }
}