﻿/*<style type="text/css" >*/
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.containersignup {
    padding-top: 50px; /* To prevent content being hidden behind header */
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* Responsive for mobile */
@media (max-width: 600px) {

    .containersignup {
        padding: 15px;
    }
}

.containersignup:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    text-transform: none; /* Reset the text-transform */
}

.form-group {
    margin-bottom: 5px;
    line-height: 0.5; /* Adjust this for line spacing between form elements */
}


    /* Label and input spacing */
    .form-group label {
        font-weight: bold;
        margin-top: 5px; /* Adds space above each label */
        margin-bottom: 5px; /* Adds space between label and input */
        display: block; /* Ensures label is on its own line */
    }
    /* Form control styling with padding and spacing */
    .form-group .form-control {
        margin-bottom: 2px; /* Space between form fields */
        padding: 10px; /* Increase padding inside input for better readability */
        font-size: 16px;
    }

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border 0.3s;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus {
        border-color: #007bff;
        outline: none;
    }

.error-message {
    color: red;
    font-size: 0.9em;
}

.success-message {
    color: green;
    text-align: center;
    margin-top: 10px;
}

button {
    width: 48%;
    padding: 12px;
    border: none;
    color: white;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* Add Font Awesome icon to asp:Button */
/*.btn-signup::before {
    content: "\f234";*/ /* Font Awesome user-plus icon */
    /*font-family: "Font Awesome 5 Free";*/ /* Specify Font Awesome */
    /*font-weight: 900;*/ /* Ensure the solid style of the icon */
    /*padding-right: 8px;*/ /* Spacing between the icon and text */
    /*display: inline-block;*/ /* Ensures proper alignment with text */
/*}*/
/*.btn-signup {
    background: linear-gradient(45deg, #007bff, #0056b3);
}*/
.btn-signup {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: bold; /* Bold text */
}

    .btn-signup:hover {
        background: linear-gradient(45deg, #007bff, green);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        font-weight: bold; /* Bold text */
    }

.btn-reset {
    background: linear-gradient(45deg, #dc3545, #c82333);
}

    .btn-reset:hover {
        background: linear-gradient(45deg, #c82333, #b21e26);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    button {
        width: 100%;
        margin: 5px 0;
    }
}

#togglePassword {
    position: absolute;
    right: 5px;
    top: 35px;
    cursor: pointer;
}
/* Basic button styles */
.btn {
    padding: 12px 24px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 10px 0;
}
    /* Add space between buttons */
    .btn + .btn {
        margin-left: 20px; /* Add horizontal space between the buttons */
    }
/* Hover effect: Bounce to right */
.hvr-bounce-to-right {
    position: relative;
    transition: transform 0.3s ease-out;
}

    .hvr-bounce-to-right:hover {
        transform: translateX(8px); /* Move 8px to the right */
    }

    /* Optional shadow on hover */
    .hvr-bounce-to-right:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

/*</style >*/
